home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.20041116-20060924 / 000276_scottac@nb.sympatico.ca_Sun Mar 19 14:58:46 2006.msg < prev    next >
Internet Message Format  |  2006-09-27  |  4KB

  1. Path: newsmaster.cc.columbia.edu!panix!logbridge.uoregon.edu!arclight.uoregon.edu!wns13feed!worldnet.att.net!207.35.177.252!nf3.bellglobal.com!ursa-nb00s0.nbnet.nb.ca!53ab2750!not-for-mail
  2. From: "Scott Caissie" <scottac@nb.sympatico.ca>
  3. Newsgroups: comp.protocols.kermit.misc
  4. References: <uGRPf.40748$VV4.591414@ursa-nb00s0.nbnet.nb.ca> <kLSPf.9392$X.1010@news-wrt-01.rdc-nyc.rr.com> <slrne10fck.8bc.fdc@sesame.cc.columbia.edu> <RqZPf.40942$VV4.594211@ursa-nb00s0.nbnet.nb.ca> <slrne10uul.jul.fdc@sesame.cc.columbia.edu> <H81Qf.41050$VV4.597519@ursa-nb00s0.nbnet.nb.ca> <ok2Qf.12766$nB6.1669@news-wrt-01.rdc-nyc.rr.com> <aQkQf.41491$VV4.608841@ursa-nb00s0.nbnet.nb.ca> <pVlQf.14280$4%1.10175@news-wrt-01.rdc-nyc.rr.com> <ATwQf.41716$VV4.616149@ursa-nb00s0.nbnet.nb.ca> <s3CQf.15925$nB6.6246@news-wrt-01.rdc-nyc.rr.com> <vmPQf.42198$VV4.628778@ursa-nb00s0.nbnet.nb.ca> <3CVQf.10658$X.5797@news-wrt-01.rdc-nyc.rr.com> <KaQRf.43750$VV4.667140@ursa-nb00s0.nbnet.nb.ca> <EWZRf.18631$4%1.15@news-wrt-01.rdc-nyc.rr.com>
  5. Subject: Re: closing a macro completely upon connect
  6. Lines: 60
  7. X-Priority: 3
  8. X-MSMail-Priority: Normal
  9. X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
  10. X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
  11. X-RFC2646: Format=Flowed; Original
  12. Message-ID: <Hq%Rf.43986$VV4.672937@ursa-nb00s0.nbnet.nb.ca>
  13. Date: Wed, 15 Mar 2006 21:12:07 GMT
  14. NNTP-Posting-Host: 156.34.25.154
  15. X-Complaints-To: abuse@aliant.net
  16. X-Trace: ursa-nb00s0.nbnet.nb.ca 1142457127 156.34.25.154 (Wed, 15 Mar 2006 17:12:07 AST)
  17. NNTP-Posting-Date: Wed, 15 Mar 2006 17:12:07 AST
  18. Organization: Aliant Internet
  19. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15529
  20.  
  21. Can you clarify your own posts? A few things are bothering me still.
  22.  
  23. Macros only execute in "command mode".  Its been several years since I
  24. fixed the bug associated with SET KEY and terminal mode, but my
  25. recollection is that the macro would be configured to execute and
  26. "terminal or connect mode" would not be exited.
  27.  
  28. 1. First sentence we know is wrong. Partially. The example I gave you  by 
  29. invoking a macro as a kverb works. Same example that you posted afterwards 
  30. as well. It has the ability to leave connect mode on its own and runs the 
  31. macro. A bridge is created.
  32. 2. Rest of your paragraph explains everything that I'm looking for.
  33.  
  34. A macro mapped to a key will not execute if you enter CONNECT mode
  35. directly.   As described in the newbugs.txt file
  36.   * Fixed a bug preventing the execution of macros assigned to keys or
  37.     mouse events when in terminal mode
  38.  
  39. 3. Please don't say nesting. Don't even need to include Frank da Cruz's bug 
  40. description on this one. Your own bug description says its not possible to 
  41. begin with, so nesting never comes into play.
  42.  
  43. because as far as I am aware the macro is never executed when bound to a key 
  44. and the key is pressed while in CONNECT mode
  45.  
  46. 4. Here you say it can't be done. You are now using my very own example to 
  47. say that the Kverb method is the proper way, though previously mentioned as 
  48. a 'work around' and a 'hack'.
  49.  
  50.  
  51. Ya I get the picture that a macro won't actively run while in connect mode. 
  52. An amazing loss of potential there.
  53. I HAVE been re-reading what you are writting. I don't think you are proof 
  54. reading it.
  55. Which is why I was confused as hell, and wondering what is a bug or not. You 
  56. had me half convinced that this feature is a bug, or a hack. Which is why I 
  57. was concerned of it being 'fixed'.
  58.  
  59. But I have little worry in that now.
  60. It is unfortunate to learn of K95's limits. I had such high hopes there. 
  61. They were real hopes too. I'm not kidding you. You get the book on how to 
  62. use the software. Only problem is that nothing in the book works without 
  63. using a hack, as you say, and even that apparently doesn't work right, when 
  64. you are using the software in any real productive way. But I do understand 
  65. how old k95 is.
  66. I'm still going to keep trying to push out its potential here beyond the 
  67. normal use. If you guys could modify VIEWONLY perhaps? So that it is what it 
  68. does. It is the CONNECT command that disables modifying anything. Its pauses 
  69. the macro.It would give the users the illusion of the screen not changing. 
  70. That itself would be enough to create a seemless use of a greater potential 
  71. here.
  72.  
  73. example:
  74. define test {
  75. viewonly
  76. ; coding which isn't being paused
  77. connect /synchronous ; would effectively override viewonly.
  78.  
  79.